home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Programming / DrawingServant / Source / Makefile < prev    next >
Encoding:
Makefile  |  1994-05-20  |  338 b   |  13 lines

  1. #
  2. # Makefile for the DrawingServant program
  3. #
  4. LIBS =  -lNeXT_s
  5. CFLAGS = -O2 -g -Wimplicit `allArchs`
  6. LDFLAGS = -segcreate __ICON app DrawingServant.tiff
  7.  
  8. DrawingServant: DrawingServant.m DrawingServant.h
  9.     $(CC) $(CFLAGS) $(LDFLAGS) -o DrawingServant DrawingServant.m $(LIBS)
  10.  
  11. tester: tester.c
  12.     $(CC) `allArchs` -O2 -o tester tester.c -lm
  13.